home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / THIN C 2.0 / Projects / postfix / postfix.c next >
Encoding:
C/C++ Source or Header  |  1991-01-23  |  113 b   |  8 lines  |  [TEXT/THIN]

  1. main()
  2. {
  3.     int        myInt;
  4.     
  5.     myInt = 5;
  6.     printf( "myInt ---> %d\n", myInt++ );
  7.     printf( "myInt ---> %d", ++myInt );
  8. }